home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wlib11_4.zip / HEADERS.EXE / WALLOC.H < prev    next >
Text File  |  1991-02-27  |  459b  |  31 lines

  1. /*** WALLOC.H ***/
  2.  
  3. /* Written By P.A. McKenzie
  4.  * The C Window Library
  5.  * Copyright (C) 1990   All Rights Reserved
  6. */
  7. #ifndef WALLOC_DEF
  8. #define WALLOC_DEF
  9.  
  10. #if defined (__TURBOC__)
  11.   #include <alloc.h>
  12. #endif
  13.  
  14. #if defined (LATTICE)
  15.   #include <stdlib.h>
  16. #endif
  17.  
  18. #if defined (MSC) || (POWERC)
  19. # include <malloc.h>
  20. #ifndef NULL
  21. # define NULL ((char *)0)
  22. #endif
  23. #endif
  24.  
  25. #if defined (__ZTC__)
  26. # include <stdlib.h>
  27. #endif
  28.  
  29.  
  30. #endif
  31.